# Makefile


all: drvrtc.com test_rtc.exe

drvrtc.com: drvrtc.obj
	TLINK /t /V  drvrtc.obj

test_rtc.exe: test_rtc.obj teclado.lib
  TLINK /V  test_rtc.obj teclado.lib

.asm.obj: 
  TASM /ZI $<

.obj.lib:
   TLIB $&.lib -+$<

clean:
    del *.obj
    del *.map
    del *.exe
    del *.lib
	del *.com